home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000397_interran@uluru.Stanford.EDU_Tue Mar 15 05:12:39 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from uluru.Stanford.EDU by cs.umb.edu with SMTP id AA17041
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Tue, 15 Mar 1994 16:09:53 -0500
  3. Received: by uluru.Stanford.EDU (4.1/inc-1.0)
  4.     id AA26941; Tue, 15 Mar 94 13:12:39 PST
  5. Date: Tue, 15 Mar 94 13:12:39 PST
  6. From: interran@uluru.Stanford.EDU (John Interrante)
  7. Message-Id: <9403152112.AA26941@uluru.Stanford.EDU>
  8. To: tex-k@cs.umb.edu
  9. Subject: kpathsea 1.7: Makefile.in and paths.h.in
  10.  
  11. I was rebuilding the kpathsea library (version 1.7) with debugging
  12. turned on and just noticed something.  If you look at the arguments to
  13. the sed command that produces paths.h from paths.h.in, you'll notice
  14. that (psfontdir) is replaced with the null string:
  15.  
  16. echo "/* paths.h: Generated from paths.h.in (`date`).  */" >paths.h
  17. sed \
  18.             -e 's,(texmf_prefix),/usr/local/lib/texmf,g'      \
  19.             -e 's,(texinputdir),/usr/local/lib/texmf/tex,g'        \
  20.             -e 's,(mfinputdir),/usr/local/lib/texmf/mf,g'          \
  21.             -e 's,(fontdir),/usr/local/lib/texmf/fonts,g'                \
  22.             -e 's,(fmtdir),/usr/local/lib/texmf/ini,g'                 \
  23.             -e 's,(basedir),/usr/local/lib/texmf/ini,g'                \
  24.             -e 's,(texpooldir),/usr/local/lib/texmf/ini,g'          \
  25.             -e 's,(mfpooldir),/usr/local/lib/texmf/ini,g'            \
  26.             -e 's,(psfontdir),,g'            \
  27.             -e 's,(dvips_prefix),/usr/local/lib/texmf/dvips,g'      \
  28.             -e 's,(configdir),/usr/local/lib/texmf/dvips,g'            \
  29.             -e 's,(headerdir),/usr/local/lib/texmf/dvips,g'            \
  30.             -e 's,(psmacrodir),/usr/local/lib/texmf/tex/dvips,g'          \
  31.   /home/uluru/src/TeX/ktexmf-5.528a,6.1,1.7/kpathsea/paths.h.in >> paths.h
  32.  
  33. When I checked the Makefile, I found a ps_fontdir but no psfontdir.
  34. Currently neither (psfontdir) nor (ps_fontdir) appears in paths.h.in
  35. so the upshot of all this is that no harm is being done but it would
  36. be best to either remove the sed argument or correct its spelling.
  37.  
  38.         John